home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 September & October / Amiga-CD 1997 #9-10.iso / aminet / mui_3.3 / docs / changes next >
Text File  |  1996-02-26  |  36KB  |  1,009 lines

  1. ************************************************************************
  2.  
  3.                         MUI - MagicUserInterface
  4.  
  5.                 (c) Copyright 1992-96 by Stefan Stuntz
  6.  
  7.         This file describes all changes since version 1.0 of MUI
  8.  
  9. ************************************************************************
  10.  
  11.  
  12. ------------------------------------------------------------------------
  13. Version 3.3 (22-Feb-96)                      (muimaster.library V14.106)
  14. ------------------------------------------------------------------------
  15.  
  16. * MINOR SASG UPDATE *
  17.  
  18. Changes for users:
  19.  
  20. - Help bubbles no longer block an application.
  21.  
  22. - Fixed refresh bug of prop gadgets in virtual groups.
  23.  
  24. - Fixed ARexx command INFO SCREEN.
  25.  
  26. - MUI could crash after disposing an application when ARexx was used.
  27.  
  28. - Fixed refresh of color wheels.
  29.  
  30. - Fixed crash when using Coloradjust objects with Kick 2.x.
  31.  
  32. - Fixed double redraw after window resize.
  33.  
  34. Changes for programmers:
  35.  
  36. - Implemented MUIM_Application_AboutMUI,refwindow method to show MUIs
  37.   about window. Please include an "About MUI..." menu item in all your
  38.   programs.
  39.  
  40. - MUIA_String_Contents notification did not work on
  41.   AMIGA-X/C/V etc. string gadget clipboard hotkeys.
  42.  
  43. - Implemented MUIV_Listview_ScrollerPos_None to create listviews
  44.   without am attached scrollbar. You can create a scrollbar object,
  45.   place it anywhere in your window and connect it to the list (not
  46.   listview!) through notification. See autodocs of
  47.   MUIA_Listview_ScrollerPos for details.
  48.  
  49. - Fixed strange menu item return ID reports.
  50.  
  51. - Menuclass would not allow to set MUIA_Menu_Title. Instead, it
  52.   accidently checked for MUIA_Menuitem_Title. Now, it recognizes
  53.   both tags.
  54.  
  55. - Menu objects and Menuitem objects did not correctly update the
  56.   current menustrip when certain attributes (e.g. the title) were
  57.   changed.
  58.  
  59. - Creating Application objects without MUIA_Application_Title/Base/...
  60.   lead to very strange behaviour. Now, the application simply names
  61.   itself "UNNAMED".
  62.  
  63. - MUI_DisposeObject(NULL) would accidently crash the machine although
  64.   being documented as doing nothing.
  65.  
  66.  NOTE: I strongly suggest to subscribe to the MUI mailing list. Only
  67.  here is the place to ask questions and make suggestions. Programming
  68.  serious MUI applications without support on this mailing list is nearly
  69.  impossible!
  70.  
  71.  To subscribe, mail to <mui-request@sunsite.informatik.rwth-aachen.de>
  72.  with the single word "subscribe" (no quotes!) as subject (SUBJECT, not
  73.  message body!). You might want to send a HELP command to the server as
  74.  well. Thanks for your cooperation.
  75.  
  76.  
  77.  
  78. ------------------------------------------------------------------------
  79. Version 3.2 (31-Jan-96)                      (muimaster.library V13.686)
  80. ------------------------------------------------------------------------
  81.  
  82. * MINOR SASG UPDATE *
  83.  
  84. Changes for users:
  85.  
  86. - Rewrote some small critical parts in Assembler, MUI 3.2 should run
  87.   significantly faster than previous versions.
  88.  
  89. - Enhanced listview scrolling speed.
  90.  
  91. - Created custom root class which uses memory pools to allocate
  92.   objects. Reduces memory fragmentation and speeds up object
  93.   creation about 100%.
  94.  
  95. - Optmizied scrolling in virtual groups.
  96.  
  97. - Numeric buttons didn't draw their disabled state.
  98.  
  99. - Implemented keyboard control for scrollgroups.
  100.  
  101. - Implemented presets for Coloradjust objects. Presets are read
  102.   from mui:Presets/rgb.txt.
  103.  
  104. - Fixed 16 bytes memory leak.
  105.  
  106. - Fixed redrawing of prop gadgets.
  107.  
  108. - Fixed prop gadgets in listviews with lots of entries.
  109.  
  110. - Enhanced positioning of help bubble.
  111.  
  112. - Help bubbles and Drag&Drop messed up the display if CyberGraphX was
  113.   installed and the used screen was an ECS/AGA display mode with
  114.   interleaved bitmaps. Note well: If your bubbles are broken on
  115.   CyberGraphX screenmodes, be sure to use the *latest* version of
  116.   CyberGraphX from aminet.
  117.  
  118. - Rewrote PSI palette handling completely. Should be much easier to
  119.   use now. Included color presets as popup menus on the color page.
  120.  
  121. - Heavily reduced memory usage of string objects, optimized overall
  122.   memory consumption.
  123.  
  124. Changes for programmers:
  125.  
  126. - Implemented MUIA_List_PuddleSize, MUIA_List_ThreshSize and
  127.   MUIA_List_MemPool to control the pool created by a list object.
  128.  
  129. - Implemented scroll gadgets in window borders. See autodocs
  130.   of MUIA_Window_UseLeftBorderScroller, MUIA_Window_UseRightBorderScroller,
  131.   MUIA_Window_UseBottomBorderScroller and
  132.   MUIA_Prop_UseWinBorder, MUIA_Scrollgroup_UseWinBorder
  133.   for details.
  134.  
  135. - Implemented MUIM_Pendisplay_SetXXX methods to adjust defaults
  136.   of a pendisplay object.
  137.  
  138. - Implememted a timer in application class. See TIMER section
  139.   of MUIM_Application_AddInputHandler for details.
  140.  
  141. - Implemented MUIA_Application_WindowList. Getting this attribute
  142.   returns a pointer to a struct List which contains an applications
  143.   child windows. Use intuition.library/NextObject() to parse.
  144.  
  145. - Fixed get() of MUIA_Application_ForceQuit.
  146.  
  147. - Fixed MUIA_Text_HiChar with bold & italic texts.
  148.  
  149. - Fixed \033I[2,rrrrrrrr,gggggggg,bbbbbbbb] display bug which was
  150.   introduced in MUI 3.1.
  151.  
  152. - Reimplemented MUIA_Slider_Quiet.
  153.  
  154. - Implemented ESC P escape sequence to change pen for text strings.
  155.   Usage is like "This is \33P[17]color 17". Be sure to ObtainPen()
  156.   pens used like this.
  157.  
  158. - Fixed bug when bubbles or popup menus were used on windows
  159.   which's root object was not a group class object. Note that since MUI
  160.   plays some special tricks here, it is generally better to have the
  161.   root object of a window be a simple group class anyway. If you dont
  162.   need such a group in your window, use
  163.   MUIA_Window_RootObject, VGroup, Child, MyObj, End
  164.   instead of
  165.   MUIA_Window_RootObject, MyObj
  166.  
  167. - Fixed MUIM_Application_ShowHelp with V39 AmigaGuide library and
  168.   different help files.
  169.  
  170. - Fixed a very bad bug introduced in 3.1 that made applications crash
  171.   when MUIA_ShowMe was used on objects who's parent was the windows
  172.   root object.
  173.  
  174. - When an object is dropped somewhere outside a valid container,
  175.   the application object will receive a MUIM_DragDrop method. This
  176.   allows programs to take actions when MUI objects are e.g.
  177.   dropped on the Workbench.
  178.  
  179. - Fixed coordinate parameters of MUIM_DragDrop.
  180.  
  181. - Fixed OM_GET for MUIA_String_BufferPos and MUIA_String_DispPos.
  182.  
  183. - MUI 3.1 would accidently reopen windows which were closed during
  184.   an applications iconified state.
  185.  
  186. - Improved behaviour of MUIM_Application_Save/Load. You can override
  187.   the new methods MUIM_Export and MUIM_Import to export/import custom
  188.   data from your custom classes.
  189.  
  190. - Implemented MUIA_FillArea to avoid flickering when drawing custom classes.
  191.  
  192.  
  193.  
  194. ------------------------------------------------------------------------
  195. Version 3.1 (21-Nov-95)                      (muimaster.library V12.268)
  196. ------------------------------------------------------------------------
  197.  
  198. * MAJOR SASG UPDATE *
  199.  
  200. This is a major update. Please look at the information texts
  201. in the preferences program for information on how to update your
  202. registration.
  203.  
  204. Note: Almost everything in MUI changed, so this time, the changes
  205. section does not describe everything in detail but is just like a
  206. short overview.
  207.  
  208. Changes for users:
  209.  
  210. - To find a compromise between flexibility and resource usage, MUI 3
  211.   uses a completely new memory management concept. A lot of extra
  212.   features which are not necessarily needed to run applications have
  213.   been moved into external libraries. Most of these libraries are not
  214.   even loaded if MUI runs with its default settings. With this new
  215.   memory management, users have the the ability to control MUIs memory
  216.   usage by using appropriate configurations.
  217.  
  218. - MUI's speed has increased considerably compared with earlier versions.
  219.   This speedup depends on the machine MUI is running on: the slower the
  220.   Amiga, the more noticeable is the speed increase. Especially drawing
  221.   of GUI elements on ECS/AGA machines is a lot faster now due to a new
  222.   way of rendering. Even if a 7 MHz computer still can't be considered as
  223.   an optimum MUI platform, applications should perform a lot better now.
  224.  
  225. - The slow and bulky preferences system was completely rewritten, the
  226.   new way of handling settings is a lot clearer and more straight
  227.   forward. An applications local configuration is no longer adjusted
  228.   from the global preferences editor. Instead, all MUI applications
  229.   offer a way to open their private MUI settings window. This makes MUI
  230.   look more like an integral part of a program. Furthermore, the
  231.   settings windows are better structurized and offer easier access to
  232.   all configuration option.
  233.  
  234. - Public screen handling moved to an external program called "PSI"
  235.   (Public Screen Inspector). PSI fixes all known bugs of MUI 2.x
  236.   screens, is more easy to use and offers a few new features.
  237.   Furthermore, PSI can also be used independantly as screen manager for
  238.   non-MUI programs.
  239.  
  240. - All accompanying MUI programs make extensive use of brandnew MUI 3
  241.   programming features like dynamic object creations, balancing groups,
  242.   popup menus, Drag&Drop or Help bubbles. All those things have been
  243.   available on other operating systems for a long time, its about time
  244.   to get them to the Amiga.
  245.  
  246. Changes for programmers:
  247.  
  248. - Added so called "input handlers" which allow custom classes to
  249.   directly react on signal bits. See MUIM_AddInputHandler for details.
  250.  
  251. - You are encouraged to include a Settings/MUI... menu in your
  252.   application that does nothing but simply send a
  253.   MUIM_Application_OpenConfigWindow to your application object (see
  254.   psi.c).
  255.  
  256. - Implemented context sensitive popup menus. See autodocs of
  257.   MUIA_ContextMenu for details.
  258.  
  259. - Implemented custom layout groups. Positioning of children is
  260.   completely under programmers control. See new demo CustomLayout and
  261.   autodocs of MUIA_Group_LayoutHook for details.
  262.  
  263. - Changed layout behaviour of virtual groups. This should makes them
  264.   much more useful, especially together with the new custom layout
  265.   hooks. Performance was also increased. See autodocs of Virtgroup class
  266.   and Scrollgroup class for details.
  267.  
  268. - Implemented a Poppen class and new muimaster.library functions
  269.   MUI_ObtainPen() and MUI_ReleasePen(). Use this if your application
  270.   needs custom pens. See autodocs and demo Class2.c for details.
  271.  
  272. - Improved notification on MUIA_Window_InputEvent. See autodocs for
  273.   details.
  274.  
  275. - Fixed protection bits in dirlist objects MUIM_Dirlist_GetEntry.
  276.  
  277. - Implemented help bubbles. See MUIA_ShortHelp for details.
  278.  
  279. - Implemented MUIA_Parent attribute to ask an object about its parent
  280.   group.
  281.  
  282. - Included full source code of the new screen manager for educational
  283.   purposes. This little tool shows how to write good MUI programs. It
  284.   demonstrates several kinds of sub classes (windows, groups, lists),
  285.   drag & drop handling, dynamic object creation & linking, multi
  286.   threading, localization, help bubbles and much more. The screen
  287.   manager acts as a kind of standard MUI application, you can find lots
  288.   of important techniques and guidelines of MUI programming here. Forget
  289.   about the other demos, if you want to learn something, take the screen
  290.   manager. I want all of you to have a close look at the source and
  291.   drop your old-fashioned way of "ReturnID"-programming immediately.
  292.   It's time to get real object-oriented NOW! Don't be afraid of sub
  293.   classes, there isn't anything easier to work with.
  294.  
  295. - Implemented "disappearing" objects. Whenever a window is too small,
  296.   these objects are simply left out during layout calculations according
  297.   to their disappear level. This allows creation of complex and nice
  298.   GUIs while still remaining compatible with crappy 640x200 screens. See
  299.   autodocs of MUIA_HorizDisappear and MUIA_VertDisappear for details.
  300.  
  301. - Implemented "balancing" groups. See the Balancing demo and the
  302.   autodocs of the new BalanceClass for details.
  303.  
  304. - Implemented MUIM_Application_CheckRefresh method. You should call it
  305.   e.g. from IntuiMsgHooks of ASL-Requesters to ensure correct refreshing
  306.   of simple refresh type MUI windows. See autodocs and screen manager
  307.   source code for details.
  308.  
  309. - Implemented possibility to add objects to groups dynamically. See
  310.   autodocs of MUIM_Group_InitChange & MUIM_Group_ExitChange and screen
  311.   manager source code for details.
  312.  
  313. - Included simple brush2c program to help creating input for MUI's
  314.   Bitmap class. Source can be found in "MUI/Developer/C/Examples/",
  315.   usage examples are included in the screen manager's source code.
  316.  
  317. - Included classes to display tree structures.
  318.  
  319. - Introduced a new cycle chain system. All you have to do is to set
  320.   MUIA_CycleChain to 1 for every object that you want to have in your
  321.   chain, MUI does the rest automatically. The old
  322.   MUIM_Window_SetCycleChain will continue to work but is considered
  323.   obsolete.
  324.  
  325. - Implemented possibility to have custom builtin images in listviews.
  326.   No more need for external image files and other rubbish in your
  327.   applications. See psi.c ScreenList class and autodocs of
  328.   MUIM_List_CreateImage for details.
  329.  
  330. - Implemented full Drag&Drop facilities for all MUI objects. See
  331.   autodocs of MUIM_Drag#? in area class for details.
  332.  
  333. - Added a few new good-looking classes like level displays and turning
  334.   knobs. See slidorama demo for details.
  335.  
  336. - Rearranged class tree for slider-like classes that adjust numeric
  337.   values. See autodocs of numeric class and its subclasses for details.
  338.  
  339. - Implemented MUIM_Application_NewInput to improve behaviour of input
  340.   loops. MUIM_Application_Input will continue to work but is considered
  341.   obsolete.
  342.  
  343. - Implemented vertical bars in listviews with BAR/S switch for
  344.   MUIA_List_Format. See autodocs for details.
  345.  
  346.  
  347.  
  348. ------------------------------------------------------------------------
  349. Version 3.0 (10-Nov-95)                     (muimaster.library V11.3512)
  350. ------------------------------------------------------------------------
  351.  
  352. This was a special Computer 95 release and is not further documented.
  353.  
  354.  
  355.  
  356. ------------------------------------------------------------------------
  357. Version 2.3  (24-Dec-94)                      (muimaster.library V10.33)
  358. ------------------------------------------------------------------------
  359.  
  360. * MINOR SASG UPDATE *
  361.  
  362. Sorry, this update is a little smaller than usual. The reason is
  363. simple, I was on a long holiday trip during the last months. :-)
  364.  
  365. Changes for users:
  366.  
  367. - Online help works again (but only synchronous) for 2.x systems.
  368.  
  369. - Improved smooth scrolling for listviews with many entries.
  370.  
  371. - Prefs program fits on an NTSC 640x200 screen with topaz/8.
  372.  
  373. - Popup hotkey is filtered in string gadget input.
  374.  
  375. Changes for programmers:
  376.  
  377. - MUIA_String_MaxLen is gettable.
  378.  
  379. - MUIA_ControlChar works for listview class.
  380.  
  381. - Dirlist object returns correct file dates.
  382.  
  383. - MUIA_Dirlist_Directory is get()able.
  384.  
  385. - Implemented MUIA_Window_MouseObject & MUIA_Window_NeedsMouseObject
  386.   attributes for immediate online help. See autodocs & Settings demo
  387.   for details.
  388.  
  389. - Added some support for the GCC compiler (include/inline/muimaster.h).
  390.  
  391. - Implemented MUIA_Listview_ScrollerPos tag to specify the position of
  392.   the scrollbar in a listview.
  393.  
  394. - Fixed some problems with string gadgets and attached lists.
  395.  
  396. - Implemented MUIA_Application_UseRexx/UseCommodities attributes.
  397.   Set to FALSE to disable the builtin ARexx/Commodities handling.
  398.   Don't do this unless you have a very good reason!
  399.  
  400. - Boopsi objects in virtual groups are handled like string gadgets,
  401.   they only appear when they're completely visible.
  402.  
  403. - Implemented MUIV_Notify_Self, MUIV_Notify_Window and
  404.   MUIV_Notify_Application special values to simplify notification
  405.   mechanism. See autodocs of notify class (MUIM_Notify) for details.
  406.  
  407. - Note: If you have questions or suggestions about MUI, please do
  408.   *not* ask me directly. Write to the MUI mailing list instead:
  409.   To subscribe, send mail to <listserv@taloa.unice.fr> with
  410.   an empty subject and a line containing the magic words
  411.   SUB mui Your Name
  412.  
  413.  
  414.  
  415. ------------------------------------------------------------------------
  416. Version 2.2  (08-Aug-94)                       (muimaster.library V9.80)
  417. ------------------------------------------------------------------------
  418.  
  419. * MINOR SASG UPDATE *
  420.  
  421. Changes for users:
  422.  
  423. - There were some misunderstandings about SASG update rules. Unless
  424.   otherwise stated, all MUI updates are MINOR SASG UPDATES, i.e.
  425.   you are not required to update your keyfile. Major updates (maybe
  426.   one at the end of this year) will be specifically announced and
  427.   the MUI prefs program will tell you about it.
  428.  
  429. - When starting two or more MUI applications at the same time, there
  430.   was a chance that the keyfile was not recognized correctly.
  431.  
  432. - Fixed some installation script problems.
  433.  
  434. - Fixed a possible crash in the registration program.
  435.  
  436. - MUI 2.1 was accidently documented to require OS 2.1, that's of
  437.   course a documentation bug. MUI continues to run with 2.0.
  438.  
  439. - The serial number of a registered user is displayed in the prefs
  440.   programs about window.
  441.  
  442. - Because the MUI 2.1 default settings for HalfShine and HalfShadow
  443.   pen caused some confusion, they are back to standard MagicWB
  444.   rules (color n-4 and n-3) again.
  445.  
  446. - Fixed a bug in coloradjust class which caused wrong public screen
  447.   colors with V37.
  448.  
  449. - AmigaGuide online help works asynchronous for all MUI applications.
  450.  
  451. - Fixed some problems of listviews in virtual groups. Unfortunately,
  452.   some other problems are still there.
  453.  
  454. - Fixed cycle gadget lockup problem.
  455.  
  456. - Made window handling a bit more sensitive, MUI windows will now
  457.   look correctly even with non standard system gadget sizes.
  458.  
  459. - Prefs program terminates when receving a CTRL-C signal.
  460.  
  461. - Popup objects are controllable with a configurable hotkey.
  462.   See MUI-Prefs keyboard adjustment listview.
  463.  
  464. Changes for programmers:
  465.  
  466. - Autodocs for MUI_Redraw() didn't mention the important
  467.   fact that calling DoSuperMethod() is always the first
  468.   step in a custom classes MUIM_Draw method. Otherwise,
  469.   msg->flags is not set properly.
  470.  
  471. - Result of MUI_Redraw() changed from APTR to VOID.
  472.  
  473. - AppIcon notification works again.
  474.  
  475. - Implemented one-dimension virtual groups, useful e.g. for
  476.   button rows. See autodocs of MUIA_Scrollgroup_FreeHoriz and
  477.   MUIA_Scrollgroup_FreeVert for details.
  478.  
  479. - Getting MUIA_Disabled didn't work in previous releases.
  480.  
  481. - MUIA_Slider_Min und MUIA_Slider_Max are settable.
  482.  
  483. - Building subclasses of MUIC_Window is possible.
  484.  
  485. - Notify on MUIA_List_Entries works.
  486.  
  487. - Implemented MUIM_List_Move method to simplify moving entries
  488.   in a list. See autodocs for details.
  489.  
  490. - Implemented MUIA_Boopsi_Smart tag for better handling of "smart"
  491.   Boopsi classes, i.e. the freely distributable "editor.gadget".
  492.  
  493. - Implemented MUIM_NoNotifySet method for better handling of
  494.   bidirectional notifications (i.e. scrollbar <-> editorgadget).
  495.  
  496. - Implemented MUIA_List_InsertPosition to query position of
  497.   last inserted entry.
  498.  
  499. - Implemented MUIV_List_Remove_Selected for list class remove
  500.   method.
  501.  
  502. - Menuitem objects export & import their CHECKED state with
  503.   MUIM_Application_Save and MUIM_Application_Load.
  504.  
  505. - It's possible to include register groups in cycle chains.
  506.  
  507. - Implemented MUIA_Popobject_WindowHook to allow adjusting
  508.   cycle chains, default objects, etc. for popup objects.
  509.  
  510. - Programmers, please update "MUI.readme" in your distributions!
  511.  
  512.  
  513.  
  514. ------------------------------------------------------------------------
  515. Version 2.1  (03-Jul-94)                      (muimaster.library V8.697)
  516. ------------------------------------------------------------------------
  517.  
  518. * MINOR SASG UPDATE *
  519.  
  520. I planned to have a lot more new things for V2.1. Unfortunately, time
  521. was missing. Next versions of MUI will probably be split into a basic
  522. muimaster.library and a muifancy.library. The fancy library will hold
  523. all the additional features, users with low memory or slow machines may
  524. decide to leave out this stuff. For more infos, see the "Future" file
  525. in the developer archive.
  526.  
  527. Changes for users:
  528.  
  529. - From version 2.1 on, MUI is distributed under the rules of the SASG,
  530.   the Standardized Amiga Shareware Group. See the accompanying program
  531.   "Registration" for details.
  532.  
  533. - Screen preferences were not saved correctly sometimes.
  534.  
  535. - When changing the application with the preferences program,
  536.   MUI offers the possibility to use/save changed settings.
  537.  
  538. - Sliders can be configured to have their info text at the left side.
  539.  
  540. - Listview multiselect mode was sometimes triggered accidently.
  541.  
  542. - Enhanced popup menu configuration possibilities, including
  543.   custom background and frame settings and animated appearance.
  544.  
  545. - Removed the startup and shutdown command config options.
  546.  
  547. Changes for programmers:
  548.  
  549. - Implemented MUIV_NotTriggerValue. See autodocs of MUIM_Notify for
  550.   details.
  551.  
  552. - Fixed some autodoc syntax bugs, added version information for every
  553.   class and attribute.
  554.  
  555. - Implemented MUIA_Application_ForceQuit. See autodocs for details.
  556.  
  557. - Invisible or disabled objects don't trigger MUIA_AppMessage
  558.   notification anymore.
  559.  
  560. - Fixed Dirlist class problems with short directory names.
  561.  
  562. - When MUI fails to open a window, notifications on MUIA_Window_Open
  563.   are not triggered anymore.
  564.  
  565. - Fixed a little memory eating bug.
  566.  
  567. - Added a "often used object" collection to muimaster.library. You
  568.   should use this collection as frequently as possible instead of
  569.   building your own objects or using the supplied macros. See
  570.   autodocs of MUI_MakeObject() for details.
  571.  
  572. - Simplified the creation of labels with underscore. This makes
  573.   localization much easier. See autodocs of MUI_MakeObject()
  574.   for details.
  575.  
  576. - Added object oriented menus. See new demo program and autodocs of
  577.   menustrip, menu and menu item class for details.
  578.  
  579. - Controlling a slider object with keyboard accidently triggered
  580.   notification twice.
  581.  
  582. - Fixed problems when language specific special characters were
  583.   used as shortcut.
  584.  
  585. - Included documentation on how to write external public
  586.   custom classes. See developer docs and new examples in
  587.   "MUI/Developer/C/Examples/Classes" for details.
  588.  
  589. - Fixed a crash when the colorwheel.gadget was not available under V39.
  590.  
  591. - Implemented new builtin classes MUIC_Poplist, MUIC_Bitmap and
  592.   MUIC_Bodychunk. Just a few bytes of code but very useful.
  593.  
  594. - Rewrote some critical parts of MUI in assembler.
  595.  
  596. - Fixed a problem when MUIA_ShowMe was used on groups.
  597.  
  598. - Implemented MUIA_Window_FancyDrawing for highspeed programs.
  599.  
  600. - Fixed some notification bugs for register objects.
  601.  
  602.  
  603.  
  604. ------------------------------------------------------------------------
  605. Version 2.0  (11-Feb-94)                      (muimaster.library V7.973)
  606. ------------------------------------------------------------------------
  607.  
  608. Changes for users:
  609.  
  610. - Rearranged libraries. Classes which are needed by all applications or
  611.   which are very small are integrated in muimaster.library. Fancy and
  612.   rarely used classes come as external files. This speeds up starting
  613.   the first MUI application and simplifies installation procedure for
  614.   commercial applications.
  615.  
  616. - Integration of classes increases performance significantly.
  617.  
  618. - Rearranged the prefs program completely. Major changes include
  619.   "single application" mode, image multiselect, presets and localization.
  620.   I cannot list all the other news here in detail, but together they should
  621.   make adjusting preferences a lot easier.
  622.  
  623. - Included beautiful new 8 color images, patterns and button designs from
  624.   Martin "MagicWB" Huttenloher. Give them a try!
  625.  
  626. - Fixed several screenmode requester bugs.
  627.  
  628. - Fixed problems with crazy going prop gadgets.
  629.  
  630. - Changed "active object" display. No more ugly active background but
  631.   instead a nice extra frame will be displayed.
  632.  
  633. - Getting the name of the used public screen is possible with
  634.   new ARexx command "info screen".
  635.  
  636. - Documented ARexx command error result codes.
  637.  
  638.  
  639. Changes for programmers:
  640.  
  641. - More detailed developer documentation including information about
  642.   writing custom classes and a MUI style guide. Read it!
  643.  
  644. - Included new demos "Class<n>" to show how to implement custom
  645.   classes.
  646.  
  647. - Added the ability to specify a listview multiselect type directly.
  648.   See MUIA_Listview_MultiSelect attribute for details.
  649.  
  650. - The MUIA_ShowMe attribute can be used to hide objects. Using this
  651.   attribute is even possible in open windows, hiding object will
  652.   then cause a new layout to take place. When necessary, the parent
  653.   window will be resized automatically. Included new demo program
  654.   "ShowHide".
  655.  
  656. - Implemented popstring, popasl, popobject classes for asynchronous
  657.   popups. popasl class is the recommended way to include file/font/etc.
  658.   requesters. Included new demo program "Popup" to demonstrate the new
  659.   popup classes.
  660.  
  661. - Added a register class. No, this is not for registrating your MUI,
  662.   its used to create flexible titled page groups. See the prefs
  663.   program and the pages demo for details.
  664.  
  665. - Added the ability to specify a listview multiselect type directly.
  666.   See MUIA_Listview_MultiSelect attribute for details.
  667.  
  668. - Implemented MUIM_List_InsertSingle method.
  669.  
  670. - Multiline entries ("foo\nbar") in a cycle gadget were not handled
  671.   correctly.
  672.  
  673. - Implemented MUIA_Rectangle_HBar and MUIA_Rectangle_VBar to create
  674.   nice single border lines.
  675.  
  676. - Implemented MUIM_MultiSet method, MUIA_NoNotify attribute and
  677.   MUIM_KillNotify method for notify class.
  678.  
  679. - Implemented MUIA_Gauge_InfoText attribute.
  680.  
  681. - Implemented MUIA_Listview_ClickColumn, MUIA_Listview_DefClickColumn.
  682.  
  683. - Fixed problem with MUIA_Application_Iconified notification.
  684.  
  685. - Implemented MUIV_List_Select_All for MUIM_List_Select method.
  686.  
  687. - Fixed some problems with sleeping windows and applications.
  688.  
  689. - MUIA_List_First and MUIA_List_Visible are really get()able.
  690.  
  691. - Fixed a problem with keyboard control for MUIA_Slider_Quiet sliders,
  692.   implemented MUIA_Slider_Reverse tag.
  693.  
  694. - Tag value and documentation for MUIA_List_Title attribute was
  695.   missing.
  696.  
  697. - Specifying images with "1:<x>" never worked, use "6:<x>" instead.
  698.   See MUIA_Image_Spec for details.
  699.  
  700. - MUI_Request() gadgets may contain '_' characters to indicate keyboard
  701.   shortcuts.
  702.  
  703. - Implemented MUIA_Application_RexxHook.
  704.  
  705. - Implemented MUIA_String_EditHook.
  706.  
  707.  
  708.  
  709. ------------------------------------------------------------------------
  710. Version 1.4  (27-Oct-93)                      (muimaster.library V6.435)
  711. ------------------------------------------------------------------------
  712.  
  713. From V1.4 on, MUI is distributed in two separate archives:
  714.   muiXXusr.lha - libraries, classes, demos, user documentation.
  715.   muiXXdev.lha - programmer interfaces and programmer documentation.
  716.  
  717.  
  718. Changes for users:
  719.  
  720. - Important Note:
  721.   Due to some enhancements in image processing, registered users will
  722.   have to readjust their image settings. Otherwise some images might
  723.   not be visible!
  724.  
  725. - I accept every currency for registration now. Please read the
  726.   registration section of the manual for details.
  727.  
  728. - Rearranged preferences program. Instead of many different windows,
  729.   page groups are used and should make things a lot easier.
  730.  
  731. - Implemented palette gadget for public screens.
  732.  
  733. - Added the possibility to use an RGB color as image (V39 and above).
  734.  
  735. - Implemented background pattern for screens (V39 and above).
  736.  
  737. - Background pictures allocate their colors correctly (V39 and above).
  738.  
  739. - Gauge frame and radio button spacing didn't work.
  740.  
  741. - Reduced flicker when resizing a window with a fancy background.
  742.  
  743. - Added configuration switch for window redraw type. Possible settings
  744.   are fast/ugly and slow/nice. Defaults to fast/ugly, which isn't really
  745.   really ugly but maybe faster.
  746.  
  747. - Added special screen type to address the frontmost public screen.
  748.  
  749. - Speeded up first drawing of a window.
  750.  
  751. - Fixed some simple refresh problems with page groups.
  752.  
  753. - Iconify Gadget wasn't visible on a one plane display.
  754.  
  755. - Improved text rendering speed about 20% (maybe even more if you have
  756.   some data cache).
  757.  
  758. - Made cycle popups blazingly fast and more configurable (frame setting).
  759.  
  760. - One gadget requesters can always be answered with the <Press> key.
  761.  
  762. - Two gadget requesters can always be answered with 'y' for the left
  763.   and 'n' for the right gadget.
  764.  
  765. - Requester buttons sometimes were layouted with no intermediate
  766.   spacing.
  767.  
  768. - Scrolling a partially obscured listview in a simple refresh window
  769.   would create some pixel garbage.
  770.  
  771. - Reasonably speeded up listview drawing, cursor handling and multi
  772.   selecting. Together with keyboard scrolling, display is even faster
  773.   if a listview's height is exactly a multiple of its line height.
  774.  
  775. - Implemented configuration switch for full line listviews. These
  776.   listviews won't show incomplete lines are and are somewhat
  777.   faster. Default are full line listviews.
  778.  
  779. - Fixed some public screen open and close problems.
  780.  
  781. - Tab size in floattext class was handled wrong.
  782.  
  783. - Eliminated first and last line flicker when scrolling listviews.
  784.  
  785. - Rearranged and rewrote parts of the documentation.
  786.  
  787. - Please read the manuals "Discussion" section before reporting
  788.   any problems!
  789.  
  790.  
  791. Changes for programmers:
  792.  
  793. - Attention... very powerful feature... :-)
  794.   Implemented virtual (scrolling) groups. Included new program
  795.   "Virtual" for demonstration.
  796.  
  797. - New color oriented classes: Colorfield, Coloradjust, Palette.
  798.  
  799. - Fixed vertical slider problem.
  800.  
  801. - Trying to create an object from a non existing class caused an
  802.   enforcer hit.
  803.  
  804. - Enabling a group containing prop/string gadgets didn't really enable
  805.   the gadgets.
  806.  
  807. - Implemented MUIM_WriteString and MUIM_WriteLong methods for easy
  808.   structure updating.
  809.  
  810. - Implemented MUIA_ControlChar for slider objects.
  811.  
  812. - MUIA_Group_ActivePage didn't trigger notification.
  813.  
  814. - Fixed some minor text engine bugs.
  815.  
  816. - During the execution of a MUIM_CallHook in a notify method,
  817.   other MUI tasks were locked.
  818.  
  819. - Implemented MUIA_Version and MUIA_Revision attributes to allow
  820.   version checking for applications.
  821.  
  822. - The number of the current entry is passed to a list display
  823.   hook as additional parameter.
  824.  
  825. - Setting a boopsi gadgets attributes didn't cause a display update.
  826.  
  827. - Setting MUIA_Background wouldn't always update the display.
  828.  
  829. - Children of MUIA_Group_SameXXXX groups could accidently be enlarged
  830.   beyond their maximum size.
  831.  
  832. - Implemented MUIA_Application_BrokerPri attribute.
  833.  
  834. - Implemented MUIA_Application_BrokerPort attribute. This port can
  835.   e.g. be used to add additional HotKeys with the HotKey() amiga.lib
  836.   function.
  837.  
  838. - Recognizing a press/release of a prop gadget is possible by
  839.   listening to the MUIA_Prop_Pressed attribute.
  840.  
  841. - Adding and removing members of groups could accidently change
  842.   the groups orientation.
  843.  
  844. - Implemented some new standard images concerning tape deck and network
  845.   issues.
  846.  
  847. - MUIM_Application_Get/SetMenuCheck didn't work.
  848.  
  849. - Some Modula and Oberon interface changes.
  850.  
  851. - Implemented MUIA_Slider_Quiet tag to hide the number output.
  852.  
  853. - Implemented MUIA_Dirlist_MultiSelDirs attribute.
  854.  
  855. - Implemented MUIA_Window_PublicScreen tag to force opening windows
  856.   on certain public screens.
  857.  
  858. - Implemented MUIM_List_NextSelected to help stepping through selected
  859.   entries of a list.
  860.  
  861. - Implemented MUIA_List_Title attribute to support titles for
  862.   (multi columned) lists.
  863.  
  864. - MUIA_List_Active wasn't reported during a MUIM_List_Clear.
  865.  
  866. - MUIA_List_Active was reported twice during a MUIM_List_Remove.
  867.  
  868. - MUIA_Boopsi_Object didn't trigger notification.
  869.  
  870. - Implemented default sizes for all classes. New windows will
  871.   be opened using these default sizes instead of
  872.   MUIV_Window_Width/Height_MinMax(10).
  873.  
  874. - Menu multi select didn't work.
  875.  
  876. - Autodocs are alphabetically sorted now.
  877.  
  878.  
  879.  
  880. ------------------------------------------------------------------------
  881. Version 1.3  (29-Aug-93)                      (muimaster.library V5.141)
  882. ------------------------------------------------------------------------
  883.  
  884. - MUIA_String_Secret string gadgets crashed on an 68000.
  885.  
  886. - Corrected assembler includes.
  887.  
  888. - Fixed bug with MUIA_Window_ActiveObject.
  889.  
  890.  
  891.  
  892. ------------------------------------------------------------------------
  893. Version 1.2  (28-Aug-93)                      (muimaster.library V5.140)
  894. ------------------------------------------------------------------------
  895.  
  896. - Fixed enforcer hits in ARexx HELP command.
  897.  
  898. - Setting MUIA_Background did not refresh the display.
  899.  
  900. - Added validity check on key description strings in prefs program.
  901.  
  902. - Initializing string or prop gadgets with MUIA_Disabled didn't really
  903.   disable the gadget.
  904.  
  905. - Fixed some sync problems with MUIA_String_Integer.
  906.  
  907. - Menu checkmarks would disappear when a window was closed and reopened.
  908.  
  909. - Specifying a non existing font caused windows to disappear.
  910.  
  911. - Included Manx, Assembler, Modula, Oberon and Amiga-E interfaces.
  912.  
  913. - Implemented MUIA_Window_Screen attribute. This allows opening a
  914.   MUI window on an explicitly defined intuition screen.
  915.  
  916. - Rewrote the image caching mechanism. This should fix some bugs
  917.   and system crashes with non existing external image files.
  918.  
  919. - Fixed a bad bug that could trash the stack under certain
  920.   circumstances.
  921.  
  922. - MUIA_Selected didn't work at object creation time.
  923.  
  924. - Better MOUSEMOVE and INTUITICKS handling to improve performance.
  925.  
  926. - Using simple refresh windows would sometimes freeze the system.
  927.  
  928. - Attention... very powerful feature... :-)
  929.   Implemented two new attributes for group class:
  930.   MUIA_Group_PageMode   (TRUE/FALSE)      this group is a page group.
  931.   MUIA_Group_ActivePage (0...numchilds-1) this child shall be displayed.
  932.   Page groups always show exactly one of their childs. The number of
  933.   this child can be changed dynamically, even in an open window.
  934.   New demo "Pages" demonstrates the new page groups.
  935.  
  936. - Included AppWindow support. See MUIA_Window_AppWindow,
  937.   MUIA_Application_DropObject and MUIA_AppMessage for details.
  938.   New demo "AppWindow" for demonstration.
  939.  
  940. - Bumped version number of all libs to 5. You must not mix MUI
  941.   classes and libraries with different version numbers, this
  942.   will lead into problems. Revision numbers are uncritical.
  943.   Note: This does not affect applications. They will of course
  944.   work with all MUI releases, as long as all version numbers
  945.   are identical.
  946.  
  947. - Included version number checking. MUI will refuse to open
  948.   classes when the class version doesn't match the master
  949.   library. Note: when I'm sure about internal class communication
  950.   (maybe in a few months...), this check will become obsolete.
  951.  
  952.  
  953.  
  954. ------------------------------------------------------------------------
  955. Version 1.1  (15-Aug-93)                       (muimaster.library V4.58)
  956. ------------------------------------------------------------------------
  957.  
  958. - Removed a remaining serial debug output.
  959.  
  960. - Corrected installation script for 2.x systems.
  961.  
  962. - Corrected HELP: assign of "StartMeFirst" script.
  963.  
  964. - Corrected some autodocs and header file bugs.
  965.  
  966. - Added system configuration switch to adjust window refresh
  967.   type, possibilities are simple refresh and smart refresh.
  968.  
  969. - Made some changes to the Oberon interface.
  970.  
  971. - String gadgets with an invisible font ate some bytes of memory.
  972.  
  973. - Fixed some bugs with failing boopsi images.
  974.  
  975. - Some minor changes to some of the demo programs.
  976.  
  977. - Speeded object creation about 10%.
  978.  
  979. - For boopsi image implementors: boopsi images now have the ability
  980.   to specify a desired minimum and maximum size. See "mui.h"
  981.   for details.
  982.  
  983. - Implemented MUIA_Window_DefaultObject attribute. See autodocs
  984.   for details.
  985.  
  986. - Added some new boopsi images.
  987.  
  988. - Implemented MUIA_ControlChar for radio buttons. Pressing
  989.   the control char will activate the next (shift -> previous)
  990.   radio button element.
  991.  
  992. - Implemented MUIA_ControlChar for string gadgets. Pressing
  993.   the control char will activate the gadget.
  994.  
  995. - Added some more keyboard shortcuts to the prefs program.
  996.  
  997. - Minimum width for MUIA_Window_SizeRight windows was calculated wrong.
  998.  
  999. - Last characters of some text fields were not displayed with
  1000.   certain fonts.
  1001.  
  1002.  
  1003.  
  1004. ------------------------------------------------------------------------
  1005. Version 1.0  (08-Aug-93)                        (muimaster.library V4.4)
  1006. ------------------------------------------------------------------------
  1007.  
  1008. - Initial Release.
  1009.